home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Utilities / WhosOnFirst / Source / myMainObject.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-23  |  609 b   |  33 lines

  1.  
  2. /* myMainObject.h */
  3.  
  4. #import <appkit/appkit.h>
  5. #import <strings.h>
  6. #import <defaults/defaults.h>
  7.  
  8. #import "IconView.h"
  9. #import "structs.h"
  10.  
  11. int nextX, nextY;
  12. struct record *users, *last;
  13. NXStream *utmpFile;
  14. id c_self;
  15.  
  16. @interface myMainObject:Object
  17. {
  18.     id icon;        /* Pointer to Icon View */
  19.     id iconWindow;        /* Pointer to Icon Window */
  20.     id mySpeech;
  21.     id scrollView;
  22.     id iconMatrix;
  23.     id localInfoMgr;
  24.     id owner;
  25. }
  26.  
  27. -appDidInit:sender;
  28. -(const char *) appDirectory;
  29. -newIconUser: (const char *)name tty: (const char *)ttystr host:(const char *)host xcoord: (float)x ycoord: (float)y;
  30. -terminate:sender;
  31.  
  32. @end
  33.